GtkAssistant: Drop use of GtkMisc
authorMatthias Clasen <mclasen@redhat.com>
Fri, 23 May 2014 02:53:52 +0000 (22:53 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 24 May 2014 04:04:41 +0000 (00:04 -0400)
Use halign instead of xalign.

https://bugzilla.gnome.org/show_bug.cgi?id=730613

gtk/gtkassistant.c

index 5ad864877a800ad54efc5344c330b276159d2590..215a9c82ac0df7fe11c0f2c48bcdaeeda1b93c33 100644 (file)
@@ -1760,15 +1760,8 @@ gtk_assistant_insert_page (GtkAssistant *assistant,
   page_info->current_title = gtk_label_new (NULL);
   gtk_widget_set_no_show_all (page_info->current_title, TRUE);
 
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
-  /* Note: we need to use misc alignment here as long as GtkLabel
-   * pays attention to it. GtkWiget::halign is ineffective, since
-   * all the labels are getting the same size anyway, due to the
-   * size group.
-   */
-  gtk_misc_set_alignment (GTK_MISC (page_info->regular_title), 0, 0.5);
-  gtk_misc_set_alignment (GTK_MISC (page_info->current_title), 0, 0.5);
-G_GNUC_END_IGNORE_DEPRECATIONS
+  gtk_widget_set_halign (page_info->regular_title, GTK_ALIGN_START);
+  gtk_widget_set_halign (page_info->current_title, GTK_ALIGN_START);
 
   gtk_widget_show (page_info->regular_title);
   gtk_widget_hide (page_info->current_title);